:root {
    --primary-blue: #00a0e4;
    --green-text: #4b917d;
    --purple-text: #5c4c8d;
    --pink-text: #e63e8e;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.aims-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 0;
    font-weight: bold;
    font-size: 36px;
    text-align: center;
}

.aims-container {
    padding: 30px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.aim-item {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.aim-number {
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.75em;
}

.aim-content {
    display: inline;
    font-size: 1.75rem;
}

.green-text {
    color: var(--green-text);
}

.blue-text {
    color: var(--primary-blue);
}

.purple-text {
    color: var(--purple-text);
}

.pink-text {
    color: var(--pink-text);
}

.circle-360 {
    position: relative;
    display: inline-block;
}

.circle-360:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    top: -5px;
    right: -15px;
}

.circle-360:before {
    content: "°";
    position: absolute;
    top: -16px;
    right: -5px;
    font-size: 24px;
    color: #e74c3c;
}

@media (max-width: 768px) {
    .aims-container {
        padding: 20px 15px;
    }

    .aim-content {
        font-size: 1em;
    }

    .aims-header {
        font-size: 28px;
    }
}